home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / netBoot.new / boot.h < prev    next >
C/C++ Source or Header  |  1990-12-19  |  890b  |  32 lines

  1. /*-
  2.  * boot.h --
  3.  *     Header file for sprite tftp boot program
  4.  *
  5.  * Copyright (c) 1987 by the Regents of the University of California
  6.  *
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  *    "$Header: /sprite/src/boot/netBoot/RCS/boot.h,v 1.2 89/06/16 08:30:31 brent Exp $ SPRITE (Berkeley)"
  16.  */
  17. #ifndef _BOOT_H
  18. #define _BOOT_H
  19.  
  20. #include <machparam.h>
  21.  
  22. #ifndef ASM
  23. #include    "sunromvec.h"
  24. #endif /* ASM */
  25.  
  26. #define BOOT_START        (BOOT_CODE-0x4000)
  27.  
  28. #define printf      (*romp->v_printf)
  29. #define printhex  (*romp->v_printhex)
  30.  
  31. #endif /* _BOOT_H */
  32.